home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
c_lib01.arc
/
CURDOWN.C
< prev
next >
Wrap
Text File
|
1985-03-01
|
2KB
|
47 lines
/* *** curdown.c *** */
/* */
/* IBM - PC microsoft "C" */
/* */
/* Function to move the cursor down y relative lines. */
/* */
/* Written by L. Cuthbertson, March 1984. */
/* */
/*********************************************************************/
/* */
#define NULL '\000'
#define POUND '#'
curdown(y)
int y;
{
extern char CUD[];
char yrel[3],command[20];
int i,inpos,outpos;
/* initialize screen controls */
scrinit();
/* convert integer relative motion into string */
sprintf(yrel,"%d",y);
/* build command line */
inpos = 0; /* position within control string */
outpos = 0; /* position within command string */
while (CUD[inpos] != POUND)
command[outpos++] = CUD[inpos++];
for (i=0;yrel[i] != NULL;i++)
command[outpos++] = yrel[i];
inpos++;
while (CUD[inpos] != NULL)
command[outpos++] = CUD[inpos++];
command[outpos] = NULL;
/* write command to screen */
writes(command);
}